home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / bool.h next >
C/C++ Source or Header  |  1993-11-01  |  97b  |  10 lines

  1. #ifndef bool_h
  2. #define bool_h
  3.  
  4. typedef int bool;
  5.  
  6. const bool TRUE=1;
  7. const bool FALSE=0;
  8.  
  9. #endif
  10.